/* ============================================================================
   Dreamfire Studios - About Page (Refined Simplified Version)
   ============================================================================ */

#about-image {
    display: block;
    margin: 0 auto 1.5rem auto;
    height: 200px;
    width: 200px;
    object-fit: cover;
    border: 10px solid #fff;
    border-radius: 50px;
    box-shadow: 0 0 25px rgba(211, 81, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#about-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 35px rgba(255, 122, 62, 0.45);
}

#about-main-header {
    color: var(--accent, #D35100);
    font-size: 50px;
    font-weight: 800;
    text-align: center;
    margin-top: 1rem;
    letter-spacing: 0.03em;
}

.about-text-subheader {
    color: var(--accent-2, #F07900);
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(240, 121, 0, 0.3);
    padding-bottom: 0.25rem;
}

.about-text {
    color: #fff;
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-weight: 400;
}

.time-line-text-header {
    color: var(--accent-2, #F07900);
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.time-line-text {
    color: #a1a1a1;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

/* Timeline vertical line blocks (optional helper class) */
.timeline-block {
    border-left: 5px solid rgba(255, 255, 255, 0.15);
    padding-left: 15px;
    margin: 15px 0 20px 0;
    transition: border-color 0.25s ease;
}

.timeline-block:hover {
    border-color: var(--accent, #D35100);
}

.timeline-block ul {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    margin: 0;
    padding-left: 1.2rem;
    transition:
            max-height 0.5s ease,
            opacity 0.5s ease,
            margin 0.3s ease;
}

.timeline-block:hover ul {
    max-height: 500px; /* adjust based on expected text length */
    opacity: 1;
    margin-top: 0.5rem;
}

.timeline-block ul li {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.timeline-block:hover ul li {
    transform: translateX(5px);
    opacity: 1;
}

.timeline-block ul {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    #about-main-header {
        font-size: 36px;
    }
    .about-text-subheader {
        font-size: 26px;
    }
    .about-text {
        font-size: 20px;
    }
    .time-line-text-header {
        font-size: 22px;
    }
    .time-line-text {
        font-size: 17px;
    }
}